*{
      margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
nav{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20PX 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .logo{
    width: 80px;
}
nav ul li{
    list-style: none;
    display: inline-block;
    margin-left: 40px;
}
nav ul li a{
    text-decoration: none;
    color:#fff;
    font-size: 17px;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: black;
  color: black;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
    margin-top: 100px;
}

header h1 {
  font-size: 2rem;
  color: red;
  margin-bottom: 30px;
  text-align: center;
}

section {
  margin-bottom: 30px;
}

section h2 {
  color: #c10000;
  margin-bottom: 10px;
  font-size: 1.4rem;
  border-left: 4px solid #c10000;
  padding-left: 10px;
}

p {
  line-height: 1.7;
  text-align: justify;
}

footer h2 {
  color: #c10000;
  margin-bottom: 10px;
  font-size: 1.4rem;
  border-left: 4px solid #c10000;
  padding-left: 10px;
}

footer p {
  line-height: 1.7;
  text-align: justify;
}
.model-table {
  padding: 40px 20px;
  margin-top: 60px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.model-table h2 {
  color: #c10000;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

table th, table td {
  padding: 12px 16px;
  border: 1px solid #ddd;
  text-align: center;
}

table th {
  background-color: #f44336;
  color: white;
  font-weight: bold;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table tr:hover {
  background-color: #f1f1f1;
}
